home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / pluginy Firefox / 8542 / 8542.xpi / chrome / lastpass.jar / content / feedback.xul < prev    next >
Extensible Markup Language  |  2010-02-14  |  2KB  |  37 lines

  1. <?xml version="1.0" encoding="UTF-8" ?>
  2. <?xml-stylesheet href="chrome://global/skin/" type="text/css"?>
  3. <!DOCTYPE page SYSTEM "chrome://lastpass/locale/lastpass.dtd">
  4.  
  5. <page xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
  6.     onload="load_feedback(document, window)"
  7.     id="LPFeedback">
  8.     
  9.     <script type="application/x-javascript" src="chrome://lastpass/content/getlp.js" />
  10.     <script type="application/x-javascript" src="chrome://lastpass/content/prefs.js" />
  11.     
  12.     <groupbox id="Feedback" flex='1'><caption id="FeedbackCaption" />
  13.         <vbox id="splitter" flex='1'>
  14.             <label id="SubjectLabel" />
  15.             <menulist id="subject" editable="true" oncommand="change_subject(document,window)">
  16.                 <menupopup id="subject-popup" >
  17.                     <menuitem id="Option0" label=""/>
  18.                     <menuitem id="Option1" />
  19.                     <menuitem id="Option2" />
  20.                     <menuitem id="Option3" />
  21.                     <menuitem id="Option4" />
  22.                     <menuitem id="Option5" />
  23.                 </menupopup>
  24.             </menulist>
  25.             <label id="SiteLabel" />
  26.             <textbox id="site"/>
  27.             <label id="EmailLabel" />
  28.             <textbox id="email"/>
  29.             <label id="DescriptionLabel" />
  30.             <textbox flex="10" id="description" multiline="true" onfocus="focus_description(document,window)"/>
  31.             <spacer height='5'/>
  32.         </vbox>
  33.         
  34.     </groupbox>
  35.     
  36. </page>
  37.